home *** CD-ROM | disk | FTP | other *** search
/ Crack It! / Crack It!.iso / DEMOS / MECHWAR / MECH / SIM / WAIL32.DLL / [0]
Encoding:
Text File  |  1995-09-08  |  560 b   |  22 lines

  1. v     edx,edi
  2.  
  3.         ; pass up maxX (not needed)
  4.  
  5.             mov     eax,[esi].SHAPEHEADER.xmax  ; read maxX from header
  6.  
  7.         ; linecount (ebx) = maxY + 1 - minY; if linecount <= 0, exit
  8.  
  9.             mov     eax,[esi].SHAPEHEADER.ymax  ; read maxY from header
  10.             inc     eax
  11.             sub     eax,ebx
  12.             mov     ebx,eax
  13.             jle     Exit
  14.  
  15.             add     esi,SIZEOF SHAPEHEADER
  16.  
  17. lineLoop:
  18.  
  19.         ; get token, adjust count, and branch to appropriate packet handler
  20.  
  21.             LODSB_
  22.             shr